home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
SCGRAPH
/
HELP.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-11-06
|
601b
|
38 lines
unit Help;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
THelpForm = class(TForm)
Panel1: TPanel;
Image1: TImage;
Panel2: TPanel;
Button1: TButton;
HelpMemo: TMemo;
Label1: TLabel;
Label2: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
HelpForm: THelpForm;
implementation
{$R *.DFM}
procedure THelpForm.Button1Click(Sender: TObject);
begin
Close;
end;
end.